home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -in_the_mag- / workbench / sql / sqldb / rexxmacros / errsql.rexx next >
OS/2 REXX Batch file  |  1999-06-29  |  183b  |  11 lines

  1. /* sqltest.rexx */
  2. options results
  3. address 'SQLserver'
  4. say 'Got Server'
  5. 'ExecSQL' "this is a syntax error;"
  6. 'GetLastCode'
  7. say 'code = ' result
  8. 'GetLastErrMsg'
  9. say 'errmsg = ' result
  10.  
  11.